home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 138 / 138.xpi / chrome / stumbleupon.jar / content / searchDialog.xul < prev    next >
Extensible Markup Language  |  2009-05-22  |  1KB  |  57 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4. <?xml-stylesheet href="chrome://stumbleupon/skin/searchDialog.css" type="text/css"?>
  5.  
  6. <!DOCTYPE window SYSTEM "chrome://stumbleupon/locale/stumbleupon.dtd" >
  7.  
  8. <dialog id="stumble_search_dialog" title="StumbleUpon Search"
  9.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  10.   buttons="accept,cancel"
  11.   persist="screenX screenY width height"
  12.   ondialogaccept="return doOK();"
  13.   onload="init()">
  14.  
  15. <stringbundleset id="stringbundleset">
  16.     <stringbundle id="bundle_stumble" src="chrome://stumbleupon/locale/stumbleupon.properties"/>
  17. </stringbundleset>
  18.  
  19. <script type="application/x-javascript" src="searchDialog.js"/>
  20.  
  21. <popupset>
  22.     <popup id="fieldpopup"/>
  23. </popupset>
  24.  
  25. <grid flex="1" style="margin:10px">
  26.   <columns>
  27.     <column flex="1"/>
  28.   </columns>
  29.   <rows>
  30.     <row>
  31.             <hbox>
  32.                 <spacer flex="1"/>
  33.                 <label value="Enter search terms:"/>
  34.                 <spacer flex="1"/>
  35.             </hbox>
  36.         </row>
  37.         <row>
  38.             <textbox id="field"
  39.                 maxrows="14"
  40.                 width="200px"
  41.                 autocompletepopup="fieldpopup"
  42.                 inputtooltiptext="Enter search terms"
  43.                 ontextentered="handle_field_textentered()"
  44.                 ontextreverted="handle_field_textreverted()"
  45.                 onkeyup="handle_field_keyup(event)"
  46.                 onfocus="handle_field_focus()"
  47.                 onclick="field_click_kludge('click')"
  48.                 onblur="field_click_kludge('blur')"
  49.                 reflectpopuplabel="true"
  50.                 sizetopopup="none"
  51.                 maxLength="150"/>
  52.         </row>
  53.     </rows>
  54. </grid>
  55.  
  56. </dialog>
  57.